home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness:…ecision-Making Strategies / Workplace Effectiveness: Decision-Making Strategies.iso / pc / Files / Measure.dxr / 00002_Navigation framework.ls < prev    next >
Encoding:
Text File  |  1998-12-16  |  481 b   |  40 lines

  1. global gMasterData, gSection
  2.  
  3. on GoOn
  4.   stopSound2()
  5.   case gSection of
  6.     #intro:
  7.       goX()
  8.     #X, #score:
  9.       leaveThisMovie()
  10.   end case
  11. end
  12.  
  13. on goBack
  14.   stopSound2()
  15.   case gSection of
  16.     #X:
  17.       goIntro()
  18.     #score:
  19.       goX()
  20.   end case
  21. end
  22.  
  23. on leaveThisMovie
  24.   if iAmActivated(gMasterData) then
  25.     getPrintData()
  26.   end if
  27.   stopSound2()
  28.   cursor(4)
  29.   go(1, "Menu1")
  30. end
  31.  
  32. on notePadButton
  33.   DoNotepad()
  34. end
  35.  
  36. on continueNext
  37.   stopSound2()
  38.   go(the frame + 1)
  39. end
  40.